@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');

.menu {
    font-family: 'Kanit', sans-serif;
    min-width: 360px;
    color: #fff;
    position: absolute;
    border-radius: 0px;
    background:rgb(22, 28, 36);
}
.menu .head {
	background-color: #161c24;
	background: #161c24 url() no-repeat 250px center;
	height: 50px;
  font-size: 18px;
  font-weight: bold;
	line-height: 50px;
	border-left: 40px solid rgba(22, 28, 36);
}

.menu .menu-items {
    max-height: 600px;
    overflow-y: auto;
}

.menu .menu-items .menu-item {
    display: block; 
    font-size: 15.5px;
    height: 40px;
    line-height: 40px;
    width: 97.5%;
    color: #eee;
    padding-left: 5px;
    text-indent: 2%;
    transition: 200ms

}

.menu .menu-items .menu-item.selected {
    background: rgb(25, 31, 39);
    border-left: 4px solid #fff;
}

.menu .menu-items .menu-item .slider {
    margin-right: 6px;
    float: right
}

::-webkit-scrollbar {
    width: 0px;
  }
  
::-webkit-scrollbar-track {
    background: #00000000; 
}

::-webkit-scrollbar-thumb {
    background: #00000000;
}

.menu.align-left {
    left: 40;
    top: 50%;
    transform: translate(0, -50%);
}

.menu.align-top-left {
    left: 40;
    top: 40;
}

.menu.align-top {
    left: 50%;
    top: 40;
    transform: translate(-50%, 0);
}

.menu.align-top-right {
    right: 10;
    top: 40;
}

.menu.align-right {
    right: 40;
    top: 50%;
    transform: translate(0, -50%);
}

.menu.align-bottom-right {
    right: 40;
    bottom: 40;
}

.menu.align-bottom {
    left: 50%;
    bottom: 40;
    transform: translate(-50%, 0);
}

.menu.align-bottom-left {
    left: 40;
    bottom: 40;
}

.menu.align-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}